| Conditions | 1 |
| Total Lines | 8 |
| Code Lines | 2 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | // Type definitions for imaadpcm 5.0 |
||
| 12 | |||
| 13 | /** |
||
| 14 | * Decode IMA ADPCM samples into 16-bit PCM samples. |
||
| 15 | * @param {!Uint8Array} adpcmSamples A array of ADPCM samples. |
||
| 16 | * @param {number} blockAlign The block size. |
||
| 17 | * @return {!Int16Array} |
||
| 18 | */ |
||
| 19 | export function decode(samples: Uint8Array, blockAlign?: number): Int16Array; |
||
| 20 | |||
| 34 |